home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gwuada_4.zip / MAKEFILE < prev    next >
Text File  |  1990-07-25  |  335b  |  14 lines

  1. #
  2. # Makefile for script V1.1 using Turbo C 2.0
  3. # I don't think this makefile will work with the make utility
  4. # provided with Turbo C. Use a better one.
  5. #
  6. AS = tasm
  7. ASFLAGS= /mx
  8. CC= tcc
  9. CFLAGS= -mt -M
  10. LIBDIR= \tc\lib
  11.  
  12. script.com:    script.obj int21.obj
  13.     tlink ${LIBDIR}\c0t script int21 /t/c/m,script,script,${LIBDIR}\cs.lib
  14.